home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / var / arpwatch / p.awk < prev   
Text File  |  2006-06-30  |  99b  |  10 lines

  1. # Only print the first ethernet address seen
  2.  
  3. {
  4.     e = $1
  5.     if (seen[e])
  6.         next
  7.     seen[e] = 1
  8.     print
  9. }
  10.